home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 43 / Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso / -serious- / programming / other / mysticlib / include / clib / mysticview_protos.h
C/C++ Source or Header  |  1999-06-14  |  827b  |  37 lines

  1. #ifndef CLIB_MYSTICVIEW_H
  2. #define CLIB_MYSTICVIEW_H
  3. /*
  4. **    $VER: mysticview_protos.h v4.2 (31.5.99)
  5. **
  6. **    C prototype definitions
  7. **
  8. **    © TEK neoscientists
  9. */
  10.  
  11. #ifndef  EXEC_TYPES_H
  12. #include <exec/types.h>
  13. #endif
  14.  
  15. APTR MV_Create(struct Screen *screen, struct RastPort *rastport, ...);
  16. APTR MV_CreateA(struct Screen *screen, struct RastPort *rastport, struct TagItem *tags);
  17.  
  18. void MV_Delete(APTR mview);
  19.  
  20. void MV_SetAttrs(APTR mview, ...);
  21. void MV_SetAttrsA(APTR mview, struct TagItem *tags);
  22.  
  23. void MV_SetPicture(APTR mview, APTR picture);
  24.  
  25. BOOL MV_DrawOn(APTR mview);
  26. void MV_DrawOff(APTR mview);
  27.  
  28. void MV_Refresh(APTR mview);
  29.  
  30. void MV_GetAttrs(APTR mview, ...);
  31. void MV_GetAttrsA(APTR mview, struct TagItem *tags);
  32.  
  33. void MV_SetViewStart(APTR mview, LONG x, LONG y);
  34. void MV_SetViewRelative(APTR mview, LONG x, LONG y);
  35.  
  36. #endif
  37.